Batch 2 - Class 262 - Math in Genetics II (Genetic Algorithms)

Zoom: send meeting Id and password
Start recording

Preclass Exercise

AttendanceAdvay, Raghav, Ayush, Aneesh, Shikhar, Rohan, Mihir, Vivaan, Aarkin, Anshi, SiddhantJ, Kushagra, Vansh, Harshiet, Angad, Muskaan, Rehaan, Kabir

Class Notes:
Recap

Genetic Algorithms
Computing that leverages the fundamental principles of natural selection

Consider the problem of monkey's typing random strings. What are the chances of a monkey randomly typing "to be or not to be that is the question" - say the keyboard has 26 characters and a space (total 27 characters)

How could we write a program to discover this phrase faster? Lets apply principles of genetics

This is an example where we know the answer and we want to get to it, so we could just type it. However, it we dont know the answer and the search space is large, how do we get there? What is an algorithm which can do this?

A lot of problems of this nature, where we know how to test for a good answer, but don't know what the good answer is, can be solved using genetic algorithms

Homework
Consider the maze below
We are trying to find a path through the maze. Each path may be encoded as a sequence of "turns" - what does the path do when it encounters an obstacle (in absence of an obstacle, the path continues in a straight line). The actions might be L,R,B (left, right, back). Let us also say that the path has maximum length of 12 - i.e. if the path doesn't lead to "*" after 12 "turns" and encounters an obstacle, that path is over.

Think about how you would design a genetic algorithm to solve this. What would your coding look like? How will you introduce variation? How would you ensure that "good" features will persist? How will you define "fitness"?

If you know how to code, try to code this! Else try to run your "algorithm" on a random starting string, and see if the fitness scores improve from one generation to another.

Some possible lines of thinking
References:   
    Mathematical Puzzles, Geoffrey Mott-Smith
    https://www.youtube.com/watch?v=9zfeTw-uFCw

Extra Reading:
Selfish Gene

Examples: 

Note that genes are not "conscious" beings, so the notion of being "selfish" is not in the conscious behavior, but the same mechanism of hereditary transmission, diversity in the mix and survival advantage. Its just operates at a genetic level rather than at an organism level.

    https://en.wikipedia.org/wiki/Selfish_genetic_element